home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 201-225 / 201 / draco / drinc / opdef.g < prev    next >
Text File  |  1995-03-13  |  549b  |  20 lines

  1. /*flagbitsfortheoperatorsdefinedforanoperatortype*/
  2.  
  3. uint
  4. „OP_ADD=0b0000000000000001,
  5. „OP_SUB=0b0000000000000010,
  6. „OP_MUL=0b0000000000000100,
  7. „OP_DIV=0b0000000000001000,
  8. „OP_MOD=0b0000000000010000,
  9. „OP_NEG=0b0000000000100000,
  10. „OP_ABS=0b0000000001000000,
  11. „OP_IOR=0b0000000010000000,
  12. „OP_AND=0b0000000100000000,
  13. „OP_XOR=0b0000001000000000,
  14. „OP_SHL=0b0000010000000000,
  15. „OP_SHR=0b0000100000000000,
  16. „OP_NOT=0b0001000000000000,
  17. „OP_CPR=0b0010000000000000,
  18. „OP_PUT=0b0100000000000000,
  19. „OP_GET=0b1000000000000000;
  20.